02d654381d1d8059d4064a9f73d012ac0babbca2,rt/transports/http/src/main/java/org/apache/cxf/transport/http/policy/PolicyUtils.java,PolicyUtils,equals,#HTTPClientPolicy#HTTPClientPolicy#,440
Before Change
result &= (p1.getCacheControl() == null
? p2.getCacheControl() == null
: p1.getCacheControl().value().equals(p2.getCacheControl().value())
&& p1.getConnection().value().equals(p2.getConnection().value()))
&& (p1.getConnectionTimeout() == p2.getConnectionTimeout())
&& equals(p1.getContentType(), p2.getContentType())
After Change
result &= (p1.getCacheControl() == null
? p2.getCacheControl() == null
: p1.getCacheControl().equals(p2.getCacheControl())
&& p1.getConnection().value().equals(p2.getConnection().value()))
&& (p1.getConnectionTimeout() == p2.getConnectionTimeout())
&& equals(p1.getContentType(), p2.getContentType())